hPromptText("Select an article to add to the TOPICS mode by clicking on its filename. (Hold down the shift key, or click SELECT ALL below, to select more than one file.)" & RETURN & RETURN & "Click RESUME to continue with main program.")
end
on hGetKillList
set vFullList to mGrabCurrAttrList(oIndexMediator, #TOPICS)
set vListlen to count(vFullList)
set vtext to EMPTY
set vLine to 1
repeat with x = 1 to vListlen
set vName to getPropAt(vFullList, x)
if vName starts "•" then
put vName into line vLine of vtext
set vLine to vLine + 1
end if
end repeat
if vtext = EMPTY then
set vtext to "."
end if
put vtext into field gDeleteField
if vtext = "." then
mReport(oImport, "No user articles to be deleted...")
else
mReport(oImport, "Select user articles to be deleted...")
end if
set the textFont of field gDeleteField to gOurFontK
set the textHeight of cast gDeleteField to 13
set the textStyle of field gDeleteField to "plain"
end
on hPromptText pTextplease
set the text of field "userarts prompts" to pTextplease